home *** CD-ROM | disk | FTP | other *** search
- -- card: 46465 from stack: in.3r
- -- bmap block id: 0
- -- flags: 0000
- -- background id: 14090
- -- name: AutoScroll
-
-
- -- part 1 (field)
- -- low flags: 00
- -- high flags: 0002
- -- rect: left=117 top=55 right=138 bottom=471
- -- title width / last selected line: 0
- -- icon id / first selected line: 0 / 0
- -- text alignment: 0
- -- font id: 3
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name:
-
-
- -- part 2 (button)
- -- low flags: 00
- -- high flags: 2000
- -- rect: left=314 top=175 right=205 bottom=345
- -- title width / last selected line: 0
- -- icon id / first selected line: 26425 / 26425
- -- text alignment: 1
- -- font id: 0
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name:
- ----- HyperTalk script -----
- on goNext
- visual scroll left very fast
- send closecard to this card
- go this card --this is just for demonstration purposes
- --go next card
- send opencard to this card
- end goNext
-
- on mousestilldown
- global scrolling
- put true into scrolling
- goNext
- end mousestilldown
-
- on mouseup
- global scrolling
- if not scrolling then goNext
- put false into scrolling
- end mouseup
-
-
-
-
- -- part 3 (button)
- -- low flags: 00
- -- high flags: 2000
- -- rect: left=265 top=175 right=205 bottom=296
- -- title width / last selected line: 0
- -- icon id / first selected line: 902 / 902
- -- text alignment: 1
- -- font id: 0
- -- text size: 12
- -- style flags: 0
- -- line height: 16
- -- part name:
- ----- HyperTalk script -----
- on goPrev --This handler can be at the card, bkgnd, or stack level
- visual scroll right very fast
- send closecard to this card
- go this card --this is just for demonstration purposes
- --go prev card
- send opencard to this card
- end goPrev
-
- on mousestilldown
- global scrolling
- put true into scrolling
- goPrev
- end mousestilldown
-
- on mouseup
- global scrolling
- if not scrolling then goPrev
- put false into scrolling
- end mouseup
-
-
-
-
- -- part contents for background part 5
- ----- text -----
- 10
-
- -- part contents for background part 13
- ----- text -----
- Buttons
-
- -- part contents for background part 12
- ----- text -----
- AutoScroll
-
- -- part contents for card part 1
- ----- text -----
- The scripts in these buttons allow the user to continuously scroll through your stack by clicking and holding down one of your arrow buttons.